home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
SCIENTIF
/
H381.ZIP
/
GSRC208A.ZIP
/
SIMGVAR.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-08-19
|
3KB
|
56 lines
/*
GEPASI - a simulator of metabolic pathways and other dynamical systems
Copyright (C) 1989, 1992 Pedro Mendes
*/
/*************************************/
/* */
/* GWSIM - Simulation */
/* MS-WINDOWS front end */
/* */
/* Global variables */
/* */
/* QuickC/WIN 1.0 */
/* */
/* (include here compilers that */
/* compiled GWSIM successfully) */
/* */
/*************************************/
extern char szString[256]; /* variable to load resource strings */
extern char szHelpFile[]; /* help file name */
extern char szAppName[20]; /* class name for the window */
extern HCURSOR hHourGlass; /* handle for the wait cursor */
extern WORD lbWidth; /* width of largest string in list box */
extern HANDLE hInst; /* handle to this instance of the appl. */
extern HWND hWndMain; /* handle to the main window */
extern HWND hButton1; /* handle to push button */
extern HWND hButton2; /* handle to push button */
extern HMENU hMenu; /* handle to the menu */
extern GLOBALHANDLE hPrm; /* handle to memory block with prm */
extern GLOBALHANDLE hOel; /* handle to memory block w/ oel */
extern GLOBALHANDLE hScp; /* handle to memory block w/ scp */
extern struct ou huge *oel; /* mirror of outpel */
extern struct sp huge *scp; /* mirror of spar */
extern double huge *prm[MAX_STEP]; /* mirror of params */
extern double x[MAX_MET]; /* initial concentrations */
extern int notsaved; /* 1 if file has not been saved */
extern int eqefl; /* for compatibility with IOTOP.C */
extern int lno; /* number of link to edit */
extern int nlks; /* mirror of nlinks */
extern char GepasiIni[256]; /* GEPASI's INI file with full path */
extern char GnuplotExe[256]; /* name of gnuplot.exe with full path */
extern char CommandLine[1024];
extern char FileName[256]; /* filename of file with full path */
extern char FileTitle[13]; /* filename of file w/o full path */
extern char TopFile[256]; /* filename of file with full path */
extern char TopTitle[13]; /* filename of file w/o full path */
extern char DatName[256]; /* filename of file with full path */
extern char DatTitle[13]; /* filename of file w/o full path */
extern char LogFile[256]; /* filename of log file with full path */
extern FARPROC fpCheckSimEng; /* MakeProcInstance of callback */
extern char TempFile[256]; /* filename of temporary file */
extern int TimerId; /* identifies the timer */
extern int running; /* set when simulation engine is active */